* kill xmap, xmap2006.
* dprecate obsolete readme.
+++ /dev/null
-
-NOTE: THIS README PERTAINS TO THE "XMAPWPT" FORMAT, NOT THE XMAP/TOPO USA
- 4.0 CONDUIT "XMAP" FORMAT.
-
-
-Delorme XMap Handheld .WPT for PocketPC is a bit of a kludge. This
-document covers XMap Handheld Street Atlas USA edition.
-
-XMap on the PocketPC stores it's waypoints in individual .wpt files.
-For example, waypoints generated by XMap on the PocketPC are stored
-by default in the "My Documents" folder using the sequential names
-"XMap1.wpt", "XMap2.wpt", ad nauseum. Needless to say, not very
-efficient.
-
-As writing multiple waypoint files is outside of the scope of gpsbabel,
-gpsbabel chooses to write one big file, one waypoint per line.
-Extracting lines from this file is left as an exercise for the end user.
-A simple perl script to handle this conversion is included at the end
-of this README.
-
-It should also be noted that READING multiple files is indeed possible,
-but if you have more than a few points, it can be a task. For example:
-
-gpsbabel -i xmapwpt -f Xmap1.wpt -f Xmap2.wpt -o mapsend -F mapsend.wpt
-
-will read the two Xmap .wpt files and write one mapsend file. This
-is fine for a small handful of points, but could be quite cumbersome
-for folks like me who have 100+ waypoints loaded into XMap. For *nix
-folks, something as simple as:
-
-cat *.wpt > /tmp/foo.wpt
-gpsbabel -i xmapwpt -f foo.wpt -o mapsend -F mapsend.wpt
-
-will do the trick just fine.
-
-
-############ BEGIN SCRIPT
-#!/full/path/to/perl
-$INPUTFILE = @ARGV[0];
-$TARGETDIR = @ARGV[1];
-$FILENAME = @ARGV[2];
-
-if (! $FILENAME) {
- print "Usage: xmap_split.pl INPUT_FILE OUTPUT_DIRECTORY FILENAME_BASE\n";
- print " (i.e. xmapl_split.pl points.wpt /tmp/points GPSB)\n";
- print " (created GPSB0001-GPSBXXXX in /tmp/points/ from points.wpt)\n";
- exit;
-}
-
-open (INFILE, $INPUTFILE) || die "Cannot open $INPUTFILE for read!\n";
-
-while (<INFILE>) {
- $lc++;
- $filename = sprintf("%s/Gpsb%04d.wpt", $TARGETDIR, $lc);
-
- open (OUTFILE, ">$filename") || die "Cannot open $filename for write!\n";
-
- print OUTFILE $_;
-
- close(OUTFILE);
-}
-
-exit;
-
-########### END SCRIPT
-
--- /dev/null
+
+NOTE: THIS README PERTAINS TO THE "XMAPWPT" FORMAT, NOT THE XMAP/TOPO USA
+ 4.0 CONDUIT "XMAP" FORMAT.
+
+
+Delorme XMap Handheld .WPT for PocketPC is a bit of a kludge. This
+document covers XMap Handheld Street Atlas USA edition.
+
+XMap on the PocketPC stores it's waypoints in individual .wpt files.
+For example, waypoints generated by XMap on the PocketPC are stored
+by default in the "My Documents" folder using the sequential names
+"XMap1.wpt", "XMap2.wpt", ad nauseum. Needless to say, not very
+efficient.
+
+As writing multiple waypoint files is outside of the scope of gpsbabel,
+gpsbabel chooses to write one big file, one waypoint per line.
+Extracting lines from this file is left as an exercise for the end user.
+A simple perl script to handle this conversion is included at the end
+of this README.
+
+It should also be noted that READING multiple files is indeed possible,
+but if you have more than a few points, it can be a task. For example:
+
+gpsbabel -i xmapwpt -f Xmap1.wpt -f Xmap2.wpt -o mapsend -F mapsend.wpt
+
+will read the two Xmap .wpt files and write one mapsend file. This
+is fine for a small handful of points, but could be quite cumbersome
+for folks like me who have 100+ waypoints loaded into XMap. For *nix
+folks, something as simple as:
+
+cat *.wpt > /tmp/foo.wpt
+gpsbabel -i xmapwpt -f foo.wpt -o mapsend -F mapsend.wpt
+
+will do the trick just fine.
+
+
+############ BEGIN SCRIPT
+#!/full/path/to/perl
+$INPUTFILE = @ARGV[0];
+$TARGETDIR = @ARGV[1];
+$FILENAME = @ARGV[2];
+
+if (! $FILENAME) {
+ print "Usage: xmap_split.pl INPUT_FILE OUTPUT_DIRECTORY FILENAME_BASE\n";
+ print " (i.e. xmapl_split.pl points.wpt /tmp/points GPSB)\n";
+ print " (created GPSB0001-GPSBXXXX in /tmp/points/ from points.wpt)\n";
+ exit;
+}
+
+open (INFILE, $INPUTFILE) || die "Cannot open $INPUTFILE for read!\n";
+
+while (<INFILE>) {
+ $lc++;
+ $filename = sprintf("%s/Gpsb%04d.wpt", $TARGETDIR, $lc);
+
+ open (OUTFILE, ">$filename") || die "Cannot open $filename for write!\n";
+
+ print OUTFILE $_;
+
+ close(OUTFILE);
+}
+
+exit;
+
+########### END SCRIPT
+
"IFIELD SHORTNAME, \"\", \"%s\"\n"
"IFIELD CONSTANT, \"2\", \"%s\"\n"
;
-static char xmap[] =
- "# gpsbabel XCSV style file\n"
- "#\n"
- "# Format: DeLorme Xmap Conduit\n"
- "# Author: Alex Mottram\n"
- "# Date: 12/09/2002\n"
- "#\n"
- "#\n"
- "# As defined in csv.c/xmap\n"
- "#\n"
-
- "DESCRIPTION DeLorme XMap HH Native .WPT\n"
- "EXTENSION wpt\n"
-
- "#\n"
- "# FILE LAYOUT DEFINITIIONS:\n"
- "#\n"
- "FIELD_DELIMITER COMMASPACE\n"
- "RECORD_DELIMITER NEWLINE\n"
- "BADCHARS COMMA\n"
-
- "PROLOGUE BEGIN SYMBOL\n"
- "EPILOGUE END\n"
- "#\n"
- "# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE:\n"
- "#\n"
- "IFIELD LAT_HUMAN_READABLE, \"\", \"%08.5f\"\n"
- "IFIELD LON_HUMAN_READABLE, \"\", \"%08.5f\"\n"
- "IFIELD DESCRIPTION, \"\", \"%s\"\n"
-
- "OFIELD LAT_DECIMAL, \"\", \"%08.5f\"\n"
- "OFIELD LON_DECIMAL, \"\", \"%08.5f\"\n"
- "OFIELD DESCRIPTION, \"\", \"%s\"\n"
- ;
-static char xmap2006[] =
- "# gpsbabel XCSV style file\n"
- "#\n"
- "# Format: DeLorme Xmap/Street Atlas Handheld 2006 Conduit\n"
- "# Author: Pasha Phares\n"
- "# Date: 5/5/2006\n"
- "#\n"
- "# Amazingly, 2006 won't read the \"COMMASPACE\" that we used in\n"
- "# in Xmap prior to this and versions before 2006 won't read files\n"
- "# separated by only a comma.\n"
- "#\n"
-
- "DESCRIPTION DeLorme XMap/SAHH 2006 Native .TXT\n"
- "EXTENSION txt\n"
-
- "#\n"
- "# FILE LAYOUT DEFINITIIONS:\n"
- "#\n"
- "FIELD_DELIMITER COMMA\n"
- "RECORD_DELIMITER NEWLINE\n"
- "BADCHARS COMMA\n"
-
- "PROLOGUE BEGIN SYMBOL\n"
- "EPILOGUE END\n"
- "#\n"
- "# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE:\n"
- "#\n"
- "IFIELD LAT_HUMAN_READABLE, \"\", \"%.12g\"\n"
- "IFIELD LON_HUMAN_READABLE, \"\", \"%.12g\"\n"
- "IFIELD SHORTNAME, \"\", \"%s\"\n"
-
- "OFIELD LAT_DECIMAL, \"\", \"%.12g\"\n"
- "OFIELD LON_DECIMAL, \"\", \"%.12g\"\n"
- "OFIELD SHORTNAME, \"\", \"%s\"\n"
-
-
-
-
- ;
-const QVector<style_vecs_t> style_list = {{ "xmap2006", xmap2006 }, { "xmap", xmap }, { "tomtom_itn_places", tomtom_itn_places }, { "tomtom_itn", tomtom_itn }, { "tomtom_asc", tomtom_asc }, { "tabsep", tabsep }, { "saplus", saplus }, { "s_and_t", s_and_t }, { "ricoh", ricoh }, { "openoffice", openoffice }, { "nima", nima }, { "navigonwpt", navigonwpt }, { "mxf", mxf }, { "motoactv", motoactv }, { "mapconverter", mapconverter }, { "mainnav", mainnav }, { "land_air_sea", land_air_sea }, { "kompass_wp", kompass_wp }, { "kompass_tk", kompass_tk }, { "igoprimo_poi", igoprimo_poi }, { "igo2008_poi", igo2008_poi }, { "iblue757", iblue757 }, { "iblue747", iblue747 }, { "gpsman", gpsman }, { "gpsdrivetrack", gpsdrivetrack }, { "gpsdrive", gpsdrive }, { "geonet", geonet }, { "garmin_poi", garmin_poi }, { "garmin_g1000", garmin_g1000 }, { "garmin301", garmin301 }, { "fugawi", fugawi }, { "flysight", flysight }, { "dna", dna }, { "custom", custom }, { "cup", cup }, { "csv", csv }, { "cambridge", cambridge }, { "arc", arc }};
+const QVector<style_vecs_t> style_list = {{ "tomtom_itn_places", tomtom_itn_places }, { "tomtom_itn", tomtom_itn }, { "tomtom_asc", tomtom_asc }, { "tabsep", tabsep }, { "saplus", saplus }, { "s_and_t", s_and_t }, { "ricoh", ricoh }, { "openoffice", openoffice }, { "nima", nima }, { "navigonwpt", navigonwpt }, { "mxf", mxf }, { "motoactv", motoactv }, { "mapconverter", mapconverter }, { "mainnav", mainnav }, { "land_air_sea", land_air_sea }, { "kompass_wp", kompass_wp }, { "kompass_tk", kompass_tk }, { "igoprimo_poi", igoprimo_poi }, { "igo2008_poi", igo2008_poi }, { "iblue757", iblue757 }, { "iblue747", iblue747 }, { "gpsman", gpsman }, { "gpsdrivetrack", gpsdrivetrack }, { "gpsdrive", gpsdrive }, { "geonet", geonet }, { "garmin_poi", garmin_poi }, { "garmin_g1000", garmin_g1000 }, { "garmin301", garmin301 }, { "fugawi", fugawi }, { "flysight", flysight }, { "dna", dna }, { "custom", custom }, { "cup", cup }, { "csv", csv }, { "cambridge", cambridge }, { "arc", arc }};
#else /* CSVFMTS_ENABLED */
const QVector<style_vecs_t> style_list;
#endif /* CSVFMTS_ENABLED */
-BEGIN SYMBOL\r
-41.14703, -85.11092, N.E.R.D. by Enos Shenk Unknown Cache (3/3)\r
-41.13940, -85.10142, Fallen Timbers by TeamMJ Traditional Cache (2/2)\r
-41.14415, -85.14415, Historic Iron Bridges by Genoist (1/2 of TeamSJ1) Locationless (Reverse) Cache (1/1)\r
-41.12890, -85.11163, Mastadon Trek 2 by Genoist and Dogvetusa Traditional Cache (2/2)\r
-41.16413, -85.14688, NYC Trail by VistaAL Traditional Cache (1/1.5)\r
-41.15900, -85.15418, Craftily Concealed Containers by Warm Fuzzies Multi-Cache (4/2)\r
-41.12210, -85.11097, Land of Lost Auto Parts by Genoist and The Zymurgist Traditional Cache (1/5)\r
-41.17732, -85.15117, The Farm by AParks1569 Traditional Cache (1.5/1.5)\r
-41.10757, -85.13087, Swonderful by Genoist and The Zymurgist Traditional Cache (2/5)\r
-41.12733, -85.06728, Dr. Mengerson I Preserve by Genoist Traditional Cache (2/2)\r
-41.10417, -85.15167, Clue by Warm Fuzzies Multi-Cache (3.5/2)\r
-41.10823, -85.16212, Son of Pez by Enos Shenk Traditional Cache (1.5/1.5)\r
-41.09278, -85.14073, Urbana #3: Dodgy Deals by Enos Shenk Traditional Cache (2.5/1.5)\r
-41.09258, -85.09258, Secret Squirrels by Enos Shenk & Panic! Unknown Cache (4/1)\r
-41.08748, -85.13762, A King's Ransom by Team ABC and The GeoStars Team Traditional Cache (1.5/1)\r
-41.08427, -85.13597, Urbana #4: The City She Loves Me by Enos Shenk & Athena Traditional Cache (3.5/2)\r
-41.08582, -85.07230, Caribbean Cache by Genoist and Dogvetusa Traditional Cache (3/2)\r
-41.08190, -85.17180, Earthling Vector Luna- 2nd Phase by Earthling and Heavenbound Traditional Cache (1/1.5)\r
-41.08400, -85.05387, Earthling Vector Sol by Earthling & Heavenbound Traditional Cache (1.5/1.5)\r
-41.20673, -85.03985, The Sarsaparilla Cache by Cashconnect Traditional Cache (2/1.5)\r
-41.06353, -85.13400, Sky High by Enos Shenk Virtual Cache (1/3)\r
-41.09880, -85.21725, We Support Our Troops by Genoist and The Zymurgist Traditional Cache (2/2.5)\r
-41.06950, -85.19750, Shortwave by Warm Fuzzies Unknown Cache (4/2.5)\r
-41.06255, -85.04757, Starfall by Enos Shenk Traditional Cache (2/2.5)\r
-41.07482, -85.01957, Fly Like an Eagle by Team SJ1 Traditional Cache (2/2)\r
-41.04714, -85.16617, Perfectly Perplexing Puzzles by Warm Fuzzies Multi-Cache (5/3.5)\r
-41.07197, -85.01863, Arrow Haven (2/4) by Genoist Traditional Cache (2/2.5)\r
-41.07183, -85.01850, Heat Death (3/4) by Genoist Traditional Cache (2/3)\r
-41.06827, -85.01655, Abbadon by Genoist Traditional Cache (1.5/4)\r
-41.01503, -85.13290, Earthling Vector Pluto by Earthling & Heavenbound Traditional Cache (1/1.5)\r
-41.26535, -84.98950, Outstanding In Its Field Cache by kwbach Traditional Cache (2/2)\r
-41.00470, -85.05742, Earthling Vector Perelandra by Earthling & Heavenbound Multi-Cache (4/1.5)\r
-41.04247, -85.27570, KWAANTINAKAANI by Northmill Jo-Jo Beans and E-Bone Letterbox Hybrid (2/1)\r
-41.01760, -85.25190, Earthling Vector Terra by Earthling & Heavenbound Traditional Cache (1.5/2.5)\r
-40.97610, -85.22277, 47520 Feet by kidCraZy Traditional Cache (1/1.5)\r
-41.35740, -85.05117, A.C.D. Cache by 1MARKYMARK1 Traditional Cache (2/2.5)\r
-41.03592, -84.80323, EV-Castor & Pollux by Starhenge Multi-Cache (1/1.5)\r
-41.30855, -84.82960, Earthling Vector Malacandra by Earthling and Heavenbound Traditional Cache (1/1.5)\r
-41.33727, -85.39282, One Lost Ten Found by The GeoStars Team and Team ABC Traditional Cache (3/5)\r
-41.33552, -85.40885, The Leprechaun's Pot of Gold by Pete and Maureen Traditional Cache (1/1)\r
-41.08543, -84.72823, Payne Train by rlong3 (Long Clan) Traditional Cache (1.5/1)\r
-41.44473, -85.24797, Straight Flush by The GeoStars Team and Team ABC Multi-Cache (4/5)\r
-40.89088, -85.47038, 'Clare' up There by Zig & Zag Traditional Cache (2/3)\r
-40.82507, -85.35552, Jeanette's Journey by kidCraZy Multi-Cache (2.5/1.5)\r
-40.84245, -85.42245, Pine Sol by Indiana Herring Traditional Cache (1.5/2)\r
-40.84662, -85.43382, Kil--So--Quah by Good Dog Traditional Cache (1.5/2)\r
-40.80862, -85.35608, Stuck in the middle by The Hoosier River Rats Traditional Cache (2/2.5)\r
-40.80768, -85.36637, Rock Creek by The Hoosier River Rats Traditional Cache (2/2)\r
-40.87892, -85.50570, Sunken Treasure by Smokey and Family Traditional Cache (2/1)\r
-40.83560, -85.45415, Clue Two by geoprime Traditional Cache (2/3)\r
-41.53267, -84.94377, Robb Hidden Canyon by VM's Traditional Cache (2/3)\r
-41.53553, -84.93188, Fish Creek Trail by VM's Multi-Cache (3.5/1)\r
-40.87942, -85.54058, All Locked Up by Zig & Zag Traditional Cache (1/1)\r
-40.71773, -85.10702, OUABACHE CACHE by ZoneRanger Traditional Cache (1/1)\r
-41.34498, -85.68462, Wy-Tri Cache by capt zigzag & echoes Traditional Cache (2/2)\r
-41.54878, -85.45370, Delt Church Dino Cache by GeoStars Traditional Cache (1.5/2.5)\r
-41.56537, -85.46163, Clearspring Cache by capt zigzag & echoes Traditional Cache (1.5/1.5)\r
-41.56282, -85.46893, Ace-in-the-Hole by The GeoStars Team and Team ABC Multi-Cache (2/2)\r
-41.62350, -85.33873, Geocache by Maple Wood Nature Center Traditional Cache (1/1)\r
-41.20898, -84.45685, Aqueduct by coinhound Traditional Cache (2/1.5)\r
-41.66538, -85.17465, Gannon Cache by capt zigzag & echoes Traditional Cache (2/1.5)\r
-41.22390, -84.42585, 5 Mile Creek Access by coinhound Traditional Cache (1/1)\r
-40.76567, -85.59953, Missing Dental Work by Indiana Herring Traditional Cache (2/3.5)\r
-40.75487, -85.59022, Salamonie Reservoir Trail Cache by Indy Diver Traditional Cache (1/1.5)\r
-40.78918, -85.65105, Dead End Cache by JollyBGood Traditional Cache (1.5/1.5)\r
-41.34360, -84.44365, Oxbow lake AKA ( wabit twacks) by coinhound Traditional Cache (1/1.5)\r
-40.81153, -85.68533, In 'Hominy' with nature by Zig & Zag Traditional Cache (1/2.5)\r
-40.80997, -85.68650, Myrna's Treasure by Myrna's Mountaineers Traditional Cache (2/1)\r
-40.82988, -85.70725, Just Hanging Around by Zig & Zag Traditional Cache (4.5/3.5)\r
-40.63288, -85.36448, 13 graves and A Ghost by RedNeck Tracking INC. Traditional Cache (1/1)\r
-40.61557, -84.94355, 1861 Covered Cache by RedNeck Tracking INC. Traditional Cache (2/1)\r
-40.61378, -84.94383, Trailsend 1860 by RedNeck Tracking INC. Traditional Cache (1/1)\r
-41.69980, -85.03385, Nature's Back Yard by Cat E Wampus Traditional Cache (2/1.5)\r
-41.69567, -85.30143, Center Field by therealmongo Traditional Cache (2/2.5)\r
-41.70473, -84.99397, Back to our Beloved Sport by Max's Pets with Birddog Traditional Cache (2/2)\r
-41.69323, -85.33213, Pigion River Cache by Bonnie & Clyde Traditional Cache (2.5/2)\r
-41.71252, -85.02377, Artesian by Good Dog Traditional Cache (1.5/1.5)\r
-41.71708, -85.02897, P.S.P. by The Wolfe Clan Traditional Cache (1/1.5)\r
-41.71720, -85.01957, Earthling Vector Mercury by Earthling & Heavenbound Traditional Cache (1.5/2)\r
-41.71535, -84.98552, Marsh Lake High Ground by VirtualMoore Traditional Cache (3/2)\r
-41.55555, -84.57783, Bible Park Stash by DwFlatP8 and Luckyfriend Traditional Cache (1.5/1.5)\r
-41.23113, -84.36397, Taylor Made by Team WolfPack Traditional Cache (1/1.5)\r
-41.71960, -84.96467, The Crane Waterfall by VM's Traditional Cache (2/2.5)\r
-40.63232, -85.47248, Serenity by Indiana and Marion Traditional Cache (1.5/1)\r
-41.24542, -84.35613, "Tanks" For The Memories by Team WolfPack Traditional Cache (1/1)\r
-41.29958, -84.36582, Lets Make A "Diehl" by Team WolfPack Traditional Cache (1/1)\r
-41.72573, -84.96353, 80/90 Westbound Cache by Good Dog Traditional Cache (1/1)\r
-41.28945, -84.35925, Confluence Cache by Team WolfPack Multi-Cache (2/1)\r
-41.71007, -85.37105, Lane Lake Cache by capt zigzag and echoes Traditional Cache (2/2)\r
-41.69660, -84.80602, tristate marker by Hillsdale Historical Society Virtual Cache (1/1)\r
-41.51000, -85.78042, School Daze by Lobo Valiente Virtual Cache (1/1)\r
-41.55730, -84.50957, Cemetery Hill by DwFlatP8 and Luckyfriend Traditional Cache (1.5/1.5)\r
-40.53373, -85.14770, Balbec Cabin Keychains by RedNeck Tracking INC. Traditional Cache (1/1)\r
-40.93718, -84.33907, Big Green by tex4711 Traditional Cache (1.5/1)\r
-41.38972, -85.89556, Island Cache by Bonnie & Clyde Traditional Cache (1.5/1)\r
-41.69122, -84.67567, glacial trailing by Mark Robinette Traditional Cache (2.5/2)\r
-40.51967, -84.98795, Liberty Cache by RedNeck Tracking INC. Traditional Cache (1/1)\r
-41.51870, -85.81747, Five Medals by kam Traditional Cache (2/2)\r
-41.01977, -84.28587, The Book Worm by Team Ace Traditional Cache (1/1)\r
-41.29335, -84.28538, Bushwacker by Panther2 Traditional Cache (2/3)\r
-END\r
+No,Latitude,Longitude,Name\r
+1,41.147030,-85.110920,"N.E.R.D. by Enos Shenk Unknown Cache (3/3)"\r
+2,41.139400,-85.101420,"Fallen Timbers by TeamMJ Traditional Cache (2/2)"\r
+3,41.144150,-85.144150,"Historic Iron Bridges by Genoist (1/2 of TeamSJ1) Locationless (Reverse) Cache (1/1)"\r
+4,41.128900,-85.111630,"Mastadon Trek 2 by Genoist and Dogvetusa Traditional Cache (2/2)"\r
+5,41.164130,-85.146880,"NYC Trail by VistaAL Traditional Cache (1/1.5)"\r
+6,41.159000,-85.154180,"Craftily Concealed Containers by Warm Fuzzies Multi-Cache (4/2)"\r
+7,41.122100,-85.110970,"Land of Lost Auto Parts by Genoist and The Zymurgist Traditional Cache (1/5)"\r
+8,41.177320,-85.151170,"The Farm by AParks1569 Traditional Cache (1.5/1.5)"\r
+9,41.107570,-85.130870,"Swonderful by Genoist and The Zymurgist Traditional Cache (2/5)"\r
+10,41.127330,-85.067280,"Dr. Mengerson I Preserve by Genoist Traditional Cache (2/2)"\r
+11,41.104170,-85.151670,"Clue by Warm Fuzzies Multi-Cache (3.5/2)"\r
+12,41.108230,-85.162120,"Son of Pez by Enos Shenk Traditional Cache (1.5/1.5)"\r
+13,41.092780,-85.140730,"Urbana #3: Dodgy Deals by Enos Shenk Traditional Cache (2.5/1.5)"\r
+14,41.092580,-85.092580,"Secret Squirrels by Enos Shenk & Panic! Unknown Cache (4/1)"\r
+15,41.087480,-85.137620,"A King's Ransom by Team ABC and The GeoStars Team Traditional Cache (1.5/1)"\r
+16,41.084270,-85.135970,"Urbana #4: The City She Loves Me by Enos Shenk & Athena Traditional Cache (3.5/2)"\r
+17,41.085820,-85.072300,"Caribbean Cache by Genoist and Dogvetusa Traditional Cache (3/2)"\r
+18,41.081900,-85.171800,"Earthling Vector Luna- 2nd Phase by Earthling and Heavenbound Traditional Cache (1/1.5)"\r
+19,41.084000,-85.053870,"Earthling Vector Sol by Earthling & Heavenbound Traditional Cache (1.5/1.5)"\r
+20,41.206730,-85.039850,"The Sarsaparilla Cache by Cashconnect Traditional Cache (2/1.5)"\r
+21,41.063530,-85.134000,"Sky High by Enos Shenk Virtual Cache (1/3)"\r
+22,41.098800,-85.217250,"We Support Our Troops by Genoist and The Zymurgist Traditional Cache (2/2.5)"\r
+23,41.069500,-85.197500,"Shortwave by Warm Fuzzies Unknown Cache (4/2.5)"\r
+24,41.062550,-85.047570,"Starfall by Enos Shenk Traditional Cache (2/2.5)"\r
+25,41.074820,-85.019570,"Fly Like an Eagle by Team SJ1 Traditional Cache (2/2)"\r
+26,41.047140,-85.166170,"Perfectly Perplexing Puzzles by Warm Fuzzies Multi-Cache (5/3.5)"\r
+27,41.071970,-85.018630,"Arrow Haven (2/4) by Genoist Traditional Cache (2/2.5)"\r
+28,41.071830,-85.018500,"Heat Death (3/4) by Genoist Traditional Cache (2/3)"\r
+29,41.068270,-85.016550,"Abbadon by Genoist Traditional Cache (1.5/4)"\r
+30,41.015030,-85.132900,"Earthling Vector Pluto by Earthling & Heavenbound Traditional Cache (1/1.5)"\r
+31,41.265350,-84.989500,"Outstanding In Its Field Cache by kwbach Traditional Cache (2/2)"\r
+32,41.004700,-85.057420,"Earthling Vector Perelandra by Earthling & Heavenbound Multi-Cache (4/1.5)"\r
+33,41.042470,-85.275700,"KWAANTINAKAANI by Northmill Jo-Jo Beans and E-Bone Letterbox Hybrid (2/1)"\r
+34,41.017600,-85.251900,"Earthling Vector Terra by Earthling & Heavenbound Traditional Cache (1.5/2.5)"\r
+35,40.976100,-85.222770,"47520 Feet by kidCraZy Traditional Cache (1/1.5)"\r
+36,41.357400,-85.051170,"A.C.D. Cache by 1MARKYMARK1 Traditional Cache (2/2.5)"\r
+37,41.035920,-84.803230,"EV-Castor & Pollux by Starhenge Multi-Cache (1/1.5)"\r
+38,41.308550,-84.829600,"Earthling Vector Malacandra by Earthling and Heavenbound Traditional Cache (1/1.5)"\r
+39,41.337270,-85.392820,"One Lost Ten Found by The GeoStars Team and Team ABC Traditional Cache (3/5)"\r
+40,41.335520,-85.408850,"The Leprechaun's Pot of Gold by Pete and Maureen Traditional Cache (1/1)"\r
+41,41.085430,-84.728230,"Payne Train by rlong3 (Long Clan) Traditional Cache (1.5/1)"\r
+42,41.444730,-85.247970,"Straight Flush by The GeoStars Team and Team ABC Multi-Cache (4/5)"\r
+43,40.890880,-85.470380,"'Clare' up There by Zig & Zag Traditional Cache (2/3)"\r
+44,40.825070,-85.355520,"Jeanette's Journey by kidCraZy Multi-Cache (2.5/1.5)"\r
+45,40.842450,-85.422450,"Pine Sol by Indiana Herring Traditional Cache (1.5/2)"\r
+46,40.846620,-85.433820,"Kil--So--Quah by Good Dog Traditional Cache (1.5/2)"\r
+47,40.808620,-85.356080,"Stuck in the middle by The Hoosier River Rats Traditional Cache (2/2.5)"\r
+48,40.807680,-85.366370,"Rock Creek by The Hoosier River Rats Traditional Cache (2/2)"\r
+49,40.878920,-85.505700,"Sunken Treasure by Smokey and Family Traditional Cache (2/1)"\r
+50,40.835600,-85.454150,"Clue Two by geoprime Traditional Cache (2/3)"\r
+51,41.532670,-84.943770,"Robb Hidden Canyon by VM's Traditional Cache (2/3)"\r
+52,41.535530,-84.931880,"Fish Creek Trail by VM's Multi-Cache (3.5/1)"\r
+53,40.879420,-85.540580,"All Locked Up by Zig & Zag Traditional Cache (1/1)"\r
+54,40.717730,-85.107020,"OUABACHE CACHE by ZoneRanger Traditional Cache (1/1)"\r
+55,41.344980,-85.684620,"Wy-Tri Cache by capt zigzag & echoes Traditional Cache (2/2)"\r
+56,41.548780,-85.453700,"Delt Church Dino Cache by GeoStars Traditional Cache (1.5/2.5)"\r
+57,41.565370,-85.461630,"Clearspring Cache by capt zigzag & echoes Traditional Cache (1.5/1.5)"\r
+58,41.562820,-85.468930,"Ace-in-the-Hole by The GeoStars Team and Team ABC Multi-Cache (2/2)"\r
+59,41.623500,-85.338730,"Geocache by Maple Wood Nature Center Traditional Cache (1/1)"\r
+60,41.208980,-84.456850,"Aqueduct by coinhound Traditional Cache (2/1.5)"\r
+61,41.665380,-85.174650,"Gannon Cache by capt zigzag & echoes Traditional Cache (2/1.5)"\r
+62,41.223900,-84.425850,"5 Mile Creek Access by coinhound Traditional Cache (1/1)"\r
+63,40.765670,-85.599530,"Missing Dental Work by Indiana Herring Traditional Cache (2/3.5)"\r
+64,40.754870,-85.590220,"Salamonie Reservoir Trail Cache by Indy Diver Traditional Cache (1/1.5)"\r
+65,40.789180,-85.651050,"Dead End Cache by JollyBGood Traditional Cache (1.5/1.5)"\r
+66,41.343600,-84.443650,"Oxbow lake AKA ( wabit twacks) by coinhound Traditional Cache (1/1.5)"\r
+67,40.811530,-85.685330,"In 'Hominy' with nature by Zig & Zag Traditional Cache (1/2.5)"\r
+68,40.809970,-85.686500,"Myrna's Treasure by Myrna's Mountaineers Traditional Cache (2/1)"\r
+69,40.829880,-85.707250,"Just Hanging Around by Zig & Zag Traditional Cache (4.5/3.5)"\r
+70,40.632880,-85.364480,"13 graves and A Ghost by RedNeck Tracking INC. Traditional Cache (1/1)"\r
+71,40.615570,-84.943550,"1861 Covered Cache by RedNeck Tracking INC. Traditional Cache (2/1)"\r
+72,40.613780,-84.943830,"Trailsend 1860 by RedNeck Tracking INC. Traditional Cache (1/1)"\r
+73,41.699800,-85.033850,"Nature's Back Yard by Cat E Wampus Traditional Cache (2/1.5)"\r
+74,41.695670,-85.301430,"Center Field by therealmongo Traditional Cache (2/2.5)"\r
+75,41.704730,-84.993970,"Back to our Beloved Sport by Max's Pets with Birddog Traditional Cache (2/2)"\r
+76,41.693230,-85.332130,"Pigion River Cache by Bonnie & Clyde Traditional Cache (2.5/2)"\r
+77,41.712520,-85.023770,"Artesian by Good Dog Traditional Cache (1.5/1.5)"\r
+78,41.717080,-85.028970,"P.S.P. by The Wolfe Clan Traditional Cache (1/1.5)"\r
+79,41.717200,-85.019570,"Earthling Vector Mercury by Earthling & Heavenbound Traditional Cache (1.5/2)"\r
+80,41.715350,-84.985520,"Marsh Lake High Ground by VirtualMoore Traditional Cache (3/2)"\r
+81,41.555550,-84.577830,"Bible Park Stash by DwFlatP8 and Luckyfriend Traditional Cache (1.5/1.5)"\r
+82,41.231130,-84.363970,"Taylor Made by Team WolfPack Traditional Cache (1/1.5)"\r
+83,41.719600,-84.964670,"The Crane Waterfall by VM's Traditional Cache (2/2.5)"\r
+84,40.632320,-85.472480,"Serenity by Indiana and Marion Traditional Cache (1.5/1)"\r
+85,41.245420,-84.356130,"""Tanks"" For The Memories by Team WolfPack Traditional Cache (1/1)"\r
+86,41.299580,-84.365820,"Lets Make A ""Diehl"" by Team WolfPack Traditional Cache (1/1)"\r
+87,41.725730,-84.963530,"80/90 Westbound Cache by Good Dog Traditional Cache (1/1)"\r
+88,41.289450,-84.359250,"Confluence Cache by Team WolfPack Multi-Cache (2/1)"\r
+89,41.710070,-85.371050,"Lane Lake Cache by capt zigzag and echoes Traditional Cache (2/2)"\r
+90,41.696600,-84.806020,"tristate marker by Hillsdale Historical Society Virtual Cache (1/1)"\r
+91,41.510000,-85.780420,"School Daze by Lobo Valiente Virtual Cache (1/1)"\r
+92,41.557300,-84.509570,"Cemetery Hill by DwFlatP8 and Luckyfriend Traditional Cache (1.5/1.5)"\r
+93,40.533730,-85.147700,"Balbec Cabin Keychains by RedNeck Tracking INC. Traditional Cache (1/1)"\r
+94,40.937180,-84.339070,"Big Green by tex4711 Traditional Cache (1.5/1)"\r
+95,41.389720,-85.895560,"Island Cache by Bonnie & Clyde Traditional Cache (1.5/1)"\r
+96,41.691220,-84.675670,"glacial trailing by Mark Robinette Traditional Cache (2.5/2)"\r
+97,40.519670,-84.987950,"Liberty Cache by RedNeck Tracking INC. Traditional Cache (1/1)"\r
+98,41.518700,-85.817470,"Five Medals by kam Traditional Cache (2/2)"\r
+99,41.019770,-84.285870,"The Book Worm by Team Ace Traditional Cache (1/1)"\r
+100,41.293350,-84.285380,"Bushwacker by Panther2 Traditional Cache (2/3)"\r
-BEGIN SYMBOL
-41.14415, -85.14415, Historic Iron Bridges by Genoist (1/2 of TeamSJ1) Locationless (Reverse) Cache (1/1)
-41.15900, -85.15418, Craftily Concealed Containers by Warm Fuzzies Multi-Cache (4/2)
-41.10757, -85.13087, Swonderful by Genoist and The Zymurgist Traditional Cache (2/5)
-41.10417, -85.15167, Clue by Warm Fuzzies Multi-Cache (3.5/2)
-41.10823, -85.16212, Son of Pez by Enos Shenk Traditional Cache (1.5/1.5)
-41.09278, -85.14073, Urbana #3: Dodgy Deals by Enos Shenk Traditional Cache (2.5/1.5)
-41.08748, -85.13762, A King's Ransom by Team ABC and The GeoStars Team Traditional Cache (1.5/1)
-41.08427, -85.13597, Urbana #4: The City She Loves Me by Enos Shenk & Athena Traditional Cache (3.5/2)
-41.06353, -85.13400, Sky High by Enos Shenk Virtual Cache (1/3)
-END
+No,Latitude,Longitude,Name\r
+1,41.144150,-85.144150,"Historic Iron Bridges by Genoist (1/2 of TeamSJ1) Locationless (Reverse) Cache (1/1)"\r
+2,41.159000,-85.154180,"Craftily Concealed Containers by Warm Fuzzies Multi-Cache (4/2)"\r
+3,41.107570,-85.130870,"Swonderful by Genoist and The Zymurgist Traditional Cache (2/5)"\r
+4,41.104170,-85.151670,"Clue by Warm Fuzzies Multi-Cache (3.5/2)"\r
+5,41.108230,-85.162120,"Son of Pez by Enos Shenk Traditional Cache (1.5/1.5)"\r
+6,41.092780,-85.140730,"Urbana #3: Dodgy Deals by Enos Shenk Traditional Cache (2.5/1.5)"\r
+7,41.087480,-85.137620,"A King's Ransom by Team ABC and The GeoStars Team Traditional Cache (1.5/1)"\r
+8,41.084270,-85.135970,"Urbana #4: The City She Loves Me by Enos Shenk & Athena Traditional Cache (3.5/2)"\r
+9,41.063530,-85.134000,"Sky High by Enos Shenk Virtual Cache (1/3)"\r
gpl gpl DeLorme GPL
saplus DeLorme Street Atlas Plus
saroute anr DeLorme Street Atlas Route
-xmap wpt DeLorme XMap HH Native .WPT
-xmap2006 txt DeLorme XMap/SAHH 2006 Native .TXT
destinator_itn dat Destinator Itineraries (.dat)
destinator_poi dat Destinator Points of Interest (.dat)
destinator_trl dat Destinator TrackLogs (.dat)
file gpl gpl DeLorme GPL
file saplus DeLorme Street Atlas Plus
file saroute anr DeLorme Street Atlas Route
-file xmap wpt DeLorme XMap HH Native .WPT
-file xmap2006 txt DeLorme XMap/SAHH 2006 Native .TXT
file destinator_itn dat Destinator Itineraries (.dat)
file destinator_poi dat Destinator Points of Interest (.dat)
file destinator_trl dat Destinator TrackLogs (.dat)
file --rw-- gpl gpl DeLorme GPL
file rw---- saplus DeLorme Street Atlas Plus
file --r--- saroute anr DeLorme Street Atlas Route
-file rw---- xmap wpt DeLorme XMap HH Native .WPT
-file rw---- xmap2006 txt DeLorme XMap/SAHH 2006 Native .TXT
file ----rw destinator_itn dat Destinator Itineraries (.dat)
file rw---- destinator_poi dat Destinator Points of Interest (.dat)
file --rw-- destinator_trl dat Destinator TrackLogs (.dat)
option saroute times Synthesize track times boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_times
-file rw---- xmap wpt DeLorme XMap HH Native .WPT xcsv
- https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html
-option xmap snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snlen
-
-option xmap snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snwhite
-
-option xmap snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snupper
-
-option xmap snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snunique
-
-option xmap urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_urlbase
-
-option xmap prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_prefer_shortnames
-
-option xmap datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_datum
-
-file rw---- xmap2006 txt DeLorme XMap/SAHH 2006 Native .TXT xcsv
- https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html
-option xmap2006 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snlen
-
-option xmap2006 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snwhite
-
-option xmap2006 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snupper
-
-option xmap2006 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snunique
-
-option xmap2006 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_urlbase
-
-option xmap2006 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_prefer_shortnames
-
-option xmap2006 datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_datum
-
file ----rw destinator_itn dat Destinator Itineraries (.dat) destinator_itn
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_itn.html
file rw---- destinator_poi dat Destinator Points of Interest (.dat) destinator_poi
split (0/1) Split into multiple routes at turns
controls Read control points as waypoint/route/none
times (0/1) Synthesize track times
- xmap DeLorme XMap HH Native .WPT
- snlen Max synthesized shortname length
- snwhite (0/1) Allow whitespace synth. shortnames
- snupper (0/1) UPPERCASE synth. shortnames
- snunique (0/1) Make synth. shortnames unique
- urlbase Basename prepended to URL on output
- prefer_shortnames (0/1) Use shortname instead of description
- datum GPS datum (def. WGS 84)
- xmap2006 DeLorme XMap/SAHH 2006 Native .TXT
- snlen Max synthesized shortname length
- snwhite (0/1) Allow whitespace synth. shortnames
- snupper (0/1) UPPERCASE synth. shortnames
- snunique (0/1) Make synth. shortnames unique
- urlbase Basename prepended to URL on output
- prefer_shortnames (0/1) Use shortname instead of description
- datum GPS datum (def. WGS 84)
destinator_itn Destinator Itineraries (.dat)
destinator_poi Destinator Points of Interest (.dat)
destinator_trl Destinator TrackLogs (.dat)
-BEGIN SYMBOL
-41.14703, -85.11092, N.E.R.D. by Enos Shenk Unknown Cache (3/3)
-41.13940, -85.10142, Fallen Timbers by TeamMJ Traditional Cache (2/2)
-41.14415, -85.14415, Historic Iron Bridges by Genoist (1/2 of TeamSJ1) Locationless (Reverse) Cache (1/1)
-41.12890, -85.11163, Mastadon Trek 2 by Genoist and Dogvetusa Traditional Cache (2/2)
-41.16413, -85.14688, NYC Trail by VistaAL Traditional Cache (1/1.5)
-41.15900, -85.15418, Craftily Concealed Containers by Warm Fuzzies Multi-Cache (4/2)
-41.12210, -85.11097, Land of Lost Auto Parts by Genoist and The Zymurgist Traditional Cache (1/5)
-41.17732, -85.15117, The Farm by AParks1569 Traditional Cache (1.5/1.5)
-41.10757, -85.13087, Swonderful by Genoist and The Zymurgist Traditional Cache (2/5)
-41.12733, -85.06728, Dr. Mengerson I Preserve by Genoist Traditional Cache (2/2)
-41.10417, -85.15167, Clue by Warm Fuzzies Multi-Cache (3.5/2)
-41.10823, -85.16212, Son of Pez by Enos Shenk Traditional Cache (1.5/1.5)
-41.09278, -85.14073, Urbana #3: Dodgy Deals by Enos Shenk Traditional Cache (2.5/1.5)
-41.09258, -85.09258, Secret Squirrels by Enos Shenk & Panic! Unknown Cache (4/1)
-41.08748, -85.13762, A King's Ransom by Team ABC and The GeoStars Team Traditional Cache (1.5/1)
-41.08427, -85.13597, Urbana #4: The City She Loves Me by Enos Shenk & Athena Traditional Cache (3.5/2)
-41.08582, -85.07230, Caribbean Cache by Genoist and Dogvetusa Traditional Cache (3/2)
-41.08190, -85.17180, Earthling Vector Luna- 2nd Phase by Earthling and Heavenbound Traditional Cache (1/1.5)
-41.08400, -85.05387, Earthling Vector Sol by Earthling & Heavenbound Traditional Cache (1.5/1.5)
-41.20673, -85.03985, The Sarsaparilla Cache by Cashconnect Traditional Cache (2/1.5)
-41.06353, -85.13400, Sky High by Enos Shenk Virtual Cache (1/3)
-41.09880, -85.21725, We Support Our Troops by Genoist and The Zymurgist Traditional Cache (2/2.5)
-41.06950, -85.19750, Shortwave by Warm Fuzzies Unknown Cache (4/2.5)
-41.06255, -85.04757, Starfall by Enos Shenk Traditional Cache (2/2.5)
-41.07482, -85.01957, Fly Like an Eagle by Team SJ1 Traditional Cache (2/2)
-41.04714, -85.16617, Perfectly Perplexing Puzzles by Warm Fuzzies Multi-Cache (5/3.5)
-41.07197, -85.01863, Arrow Haven (2/4) by Genoist Traditional Cache (2/2.5)
-41.07183, -85.01850, Heat Death (3/4) by Genoist Traditional Cache (2/3)
-41.06827, -85.01655, Abbadon by Genoist Traditional Cache (1.5/4)
-41.01503, -85.13290, Earthling Vector Pluto by Earthling & Heavenbound Traditional Cache (1/1.5)
-41.26535, -84.98950, Outstanding In Its Field Cache by kwbach Traditional Cache (2/2)
-41.00470, -85.05742, Earthling Vector Perelandra by Earthling & Heavenbound Multi-Cache (4/1.5)
-41.04247, -85.27570, KWAANTINAKAANI by Northmill Jo-Jo Beans and E-Bone Letterbox Hybrid (2/1)
-41.01760, -85.25190, Earthling Vector Terra by Earthling & Heavenbound Traditional Cache (1.5/2.5)
-40.97610, -85.22277, 47520 Feet by kidCraZy Traditional Cache (1/1.5)
-END
+No,Latitude,Longitude,Name\r
+1,41.147030,-85.110920,"N.E.R.D. by Enos Shenk Unknown Cache (3/3)"\r
+2,41.139400,-85.101420,"Fallen Timbers by TeamMJ Traditional Cache (2/2)"\r
+3,41.144150,-85.144150,"Historic Iron Bridges by Genoist (1/2 of TeamSJ1) Locationless (Reverse) Cache (1/1)"\r
+4,41.128900,-85.111630,"Mastadon Trek 2 by Genoist and Dogvetusa Traditional Cache (2/2)"\r
+5,41.164130,-85.146880,"NYC Trail by VistaAL Traditional Cache (1/1.5)"\r
+6,41.159000,-85.154180,"Craftily Concealed Containers by Warm Fuzzies Multi-Cache (4/2)"\r
+7,41.122100,-85.110970,"Land of Lost Auto Parts by Genoist and The Zymurgist Traditional Cache (1/5)"\r
+8,41.177320,-85.151170,"The Farm by AParks1569 Traditional Cache (1.5/1.5)"\r
+9,41.107570,-85.130870,"Swonderful by Genoist and The Zymurgist Traditional Cache (2/5)"\r
+10,41.127330,-85.067280,"Dr. Mengerson I Preserve by Genoist Traditional Cache (2/2)"\r
+11,41.104170,-85.151670,"Clue by Warm Fuzzies Multi-Cache (3.5/2)"\r
+12,41.108230,-85.162120,"Son of Pez by Enos Shenk Traditional Cache (1.5/1.5)"\r
+13,41.092780,-85.140730,"Urbana #3: Dodgy Deals by Enos Shenk Traditional Cache (2.5/1.5)"\r
+14,41.092580,-85.092580,"Secret Squirrels by Enos Shenk & Panic! Unknown Cache (4/1)"\r
+15,41.087480,-85.137620,"A King's Ransom by Team ABC and The GeoStars Team Traditional Cache (1.5/1)"\r
+16,41.084270,-85.135970,"Urbana #4: The City She Loves Me by Enos Shenk & Athena Traditional Cache (3.5/2)"\r
+17,41.085820,-85.072300,"Caribbean Cache by Genoist and Dogvetusa Traditional Cache (3/2)"\r
+18,41.081900,-85.171800,"Earthling Vector Luna- 2nd Phase by Earthling and Heavenbound Traditional Cache (1/1.5)"\r
+19,41.084000,-85.053870,"Earthling Vector Sol by Earthling & Heavenbound Traditional Cache (1.5/1.5)"\r
+20,41.206730,-85.039850,"The Sarsaparilla Cache by Cashconnect Traditional Cache (2/1.5)"\r
+21,41.063530,-85.134000,"Sky High by Enos Shenk Virtual Cache (1/3)"\r
+22,41.098800,-85.217250,"We Support Our Troops by Genoist and The Zymurgist Traditional Cache (2/2.5)"\r
+23,41.069500,-85.197500,"Shortwave by Warm Fuzzies Unknown Cache (4/2.5)"\r
+24,41.062550,-85.047570,"Starfall by Enos Shenk Traditional Cache (2/2.5)"\r
+25,41.074820,-85.019570,"Fly Like an Eagle by Team SJ1 Traditional Cache (2/2)"\r
+26,41.047140,-85.166170,"Perfectly Perplexing Puzzles by Warm Fuzzies Multi-Cache (5/3.5)"\r
+27,41.071970,-85.018630,"Arrow Haven (2/4) by Genoist Traditional Cache (2/2.5)"\r
+28,41.071830,-85.018500,"Heat Death (3/4) by Genoist Traditional Cache (2/3)"\r
+29,41.068270,-85.016550,"Abbadon by Genoist Traditional Cache (1.5/4)"\r
+30,41.015030,-85.132900,"Earthling Vector Pluto by Earthling & Heavenbound Traditional Cache (1/1.5)"\r
+31,41.265350,-84.989500,"Outstanding In Its Field Cache by kwbach Traditional Cache (2/2)"\r
+32,41.004700,-85.057420,"Earthling Vector Perelandra by Earthling & Heavenbound Multi-Cache (4/1.5)"\r
+33,41.042470,-85.275700,"KWAANTINAKAANI by Northmill Jo-Jo Beans and E-Bone Letterbox Hybrid (2/1)"\r
+34,41.017600,-85.251900,"Earthling Vector Terra by Earthling & Heavenbound Traditional Cache (1.5/2.5)"\r
+35,40.976100,-85.222770,"47520 Feet by kidCraZy Traditional Cache (1/1.5)"\r
+++ /dev/null
-BEGIN SYMBOL
-36.04768, -86.87918, Tennessee Scavenger Hunt Cache
-35.95765, -86.67185, Stonebrook-Greystone
-END
--- /dev/null
+# gpsbabel XCSV style file
+#
+# Format: DeLorme Xmap Conduit
+# Author: Alex Mottram
+# Date: 12/09/2002
+#
+#
+# As defined in csv.c/xmap
+#
+
+DESCRIPTION DeLorme XMap HH Native .WPT
+EXTENSION wpt
+
+#
+# FILE LAYOUT DEFINITIIONS:
+#
+FIELD_DELIMITER COMMASPACE
+RECORD_DELIMITER NEWLINE
+BADCHARS COMMA
+
+PROLOGUE BEGIN SYMBOL
+EPILOGUE END
+#
+# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE:
+#
+IFIELD LAT_HUMAN_READABLE, "", "%08.5f"
+IFIELD LON_HUMAN_READABLE, "", "%08.5f"
+IFIELD DESCRIPTION, "", "%s"
+
+OFIELD LAT_DECIMAL, "", "%08.5f"
+OFIELD LON_DECIMAL, "", "%08.5f"
+OFIELD DESCRIPTION, "", "%s"
--- /dev/null
+# gpsbabel XCSV style file
+#
+# Format: DeLorme Xmap/Street Atlas Handheld 2006 Conduit
+# Author: Pasha Phares
+# Date: 5/5/2006
+#
+# Amazingly, 2006 won't read the "COMMASPACE" that we used in
+# in Xmap prior to this and versions before 2006 won't read files
+# separated by only a comma.
+#
+
+DESCRIPTION DeLorme XMap/SAHH 2006 Native .TXT
+EXTENSION txt
+
+#
+# FILE LAYOUT DEFINITIIONS:
+#
+FIELD_DELIMITER COMMA
+RECORD_DELIMITER NEWLINE
+BADCHARS COMMA
+
+PROLOGUE BEGIN SYMBOL
+EPILOGUE END
+#
+# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE:
+#
+IFIELD LAT_HUMAN_READABLE, "", "%.12g"
+IFIELD LON_HUMAN_READABLE, "", "%.12g"
+IFIELD SHORTNAME, "", "%s"
+
+OFIELD LAT_DECIMAL, "", "%.12g"
+OFIELD LON_DECIMAL, "", "%.12g"
+OFIELD SHORTNAME, "", "%s"
+
+
+
+
+++ /dev/null
-# gpsbabel XCSV style file
-#
-# Format: DeLorme Xmap Conduit
-# Author: Alex Mottram
-# Date: 12/09/2002
-#
-#
-# As defined in csv.c/xmap
-#
-
-DESCRIPTION DeLorme XMap HH Native .WPT
-EXTENSION wpt
-
-#
-# FILE LAYOUT DEFINITIIONS:
-#
-FIELD_DELIMITER COMMASPACE
-RECORD_DELIMITER NEWLINE
-BADCHARS COMMA
-
-PROLOGUE BEGIN SYMBOL
-EPILOGUE END
-#
-# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE:
-#
-IFIELD LAT_HUMAN_READABLE, "", "%08.5f"
-IFIELD LON_HUMAN_READABLE, "", "%08.5f"
-IFIELD DESCRIPTION, "", "%s"
-
-OFIELD LAT_DECIMAL, "", "%08.5f"
-OFIELD LON_DECIMAL, "", "%08.5f"
-OFIELD DESCRIPTION, "", "%s"
+++ /dev/null
-# gpsbabel XCSV style file
-#
-# Format: DeLorme Xmap/Street Atlas Handheld 2006 Conduit
-# Author: Pasha Phares
-# Date: 5/5/2006
-#
-# Amazingly, 2006 won't read the "COMMASPACE" that we used in
-# in Xmap prior to this and versions before 2006 won't read files
-# separated by only a comma.
-#
-
-DESCRIPTION DeLorme XMap/SAHH 2006 Native .TXT
-EXTENSION txt
-
-#
-# FILE LAYOUT DEFINITIIONS:
-#
-FIELD_DELIMITER COMMA
-RECORD_DELIMITER NEWLINE
-BADCHARS COMMA
-
-PROLOGUE BEGIN SYMBOL
-EPILOGUE END
-#
-# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE:
-#
-IFIELD LAT_HUMAN_READABLE, "", "%.12g"
-IFIELD LON_HUMAN_READABLE, "", "%.12g"
-IFIELD SHORTNAME, "", "%s"
-
-OFIELD LAT_DECIMAL, "", "%.12g"
-OFIELD LON_DECIMAL, "", "%.12g"
-OFIELD SHORTNAME, "", "%s"
-
-
-
-
# Arc Distance filter
#
rm -f ${TMPDIR}/arcdist.txt
-gpsbabel -i xmap -f ${REFERENCE}/arcdist_input.txt \
+gpsbabel -i unicsv -f ${REFERENCE}/arcdist_input.txt \
-x arc,file=${REFERENCE}/arcdist_arc.txt,distance=1 \
- -o xmap -F ${TMPDIR}/arcdist.txt
+ -o unicsv -F ${TMPDIR}/arcdist.txt
compare ${REFERENCE}/arcdist_output.txt ${TMPDIR}/arcdist.txt
--- /dev/null
+
+#
+# Delorme TopoUSA 4 is a CSV strain.
+#
+rm -f ${TMPDIR}/xmap-1.gpx ${TMPDIR}/xmap-2.gpx ${TMPDIR}/xmap
+gpsbabel -i xmap -f ${REFERENCE}/xmap -o xmap -F ${TMPDIR}/xmap
+gpsbabel -i xmap -f ${REFERENCE}/xmap -o gpx -F ${TMPDIR}/xmap-1.gpx
+gpsbabel -i xmap -f ${TMPDIR}/xmap -o gpx -F ${TMPDIR}/xmap-2.gpx
+compare ${TMPDIR}/xmap-1.gpx ${TMPDIR}/xmap-2.gpx
+compare ${REFERENCE}/xmap ${TMPDIR}/xmap
# Polygon filter
#
rm -f ${TMPDIR}/polygon.txt
-gpsbabel -i xmap -f ${REFERENCE}/arcdist_input.txt \
+gpsbabel -i unicsv -f ${REFERENCE}/arcdist_input.txt \
-x polygon,file=${REFERENCE}/polygon_allencty.txt \
- -o xmap -F ${TMPDIR}/polygon.txt
+ -o unicsv -F ${TMPDIR}/polygon.txt
compare ${REFERENCE}/polygon_output.txt ${TMPDIR}/polygon.txt
+++ /dev/null
-
-#
-# Delorme TopoUSA 4 is a CSV strain.
-#
-rm -f ${TMPDIR}/xmap-1.gpx ${TMPDIR}/xmap-2.gpx ${TMPDIR}/xmap
-gpsbabel -i xmap -f ${REFERENCE}/xmap -o xmap -F ${TMPDIR}/xmap
-gpsbabel -i xmap -f ${REFERENCE}/xmap -o gpx -F ${TMPDIR}/xmap-1.gpx
-gpsbabel -i xmap -f ${TMPDIR}/xmap -o gpx -F ${TMPDIR}/xmap-2.gpx
-compare ${TMPDIR}/xmap-1.gpx ${TMPDIR}/xmap-2.gpx
-compare ${REFERENCE}/xmap ${TMPDIR}/xmap
+++ /dev/null
-
-
-
- <para>DeLorme TopoUSA/XMap Conduit is one of the bazillion
-<link linkend="fmt_csv">CSV variants</link>
-variants mentioned above. It's just like DeLorme Streets & Atlas with the addition of
-a completely pointless line at the beginning and end of the file. This
-is the format used to hot-sync to XMap from withing TopoUSA. Done with
-help of Dan Edwards.</para>
-
+++ /dev/null
-
-
-
- <para>DeLorme XMap2006 Conduit is just like
-<link linkend="fmt_xmap">XMap</link>
-, except there are
- no spaces between fields and the coordinate format is slightly
- different. The completely pointless header and footer lines
- are the same, at least. Use this to create the XMapHHWptsSend.txt
- file needed to sync to Street Atlas Handheld 2006.</para>
- <para>Note that in order to keep from creating duplicates on your handheld, you must first remove the file "XMapWptsDB" from your handheld, restart SAHH2006 on the handheld to create an empty database, and THEN sync the new file. </para>
-